home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / network / daemons / nfs / nfs-serv.2be / nfs-serv / nfs-server-2.2beta16 / ugid.x < prev    next >
Encoding:
Text File  |  1995-05-21  |  328 b   |  18 lines

  1.  
  2. %#include <rpc/rpc.h>
  3.  
  4. const MAXUGLEN = 64;
  5. const NOBODY = -2;
  6. const WILDCARD = -1;
  7. typedef string ugname<MAXUGLEN>;
  8.  
  9. program UGIDPROG {
  10.     version UGIDVERS {
  11.     int AUTHENTICATE(int) = 1;
  12.     int NAME_UID(ugname) = 2;
  13.     int GROUP_GID(ugname) = 3;
  14.     ugname UID_NAME(int) = 4; 
  15.     ugname GID_GROUP(int) = 5; 
  16.     } = 1;
  17. } = 0x2084e581;
  18.